home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 3_0 / JOVE_4 / JOVEDOCS / CMDS.DOC < prev    next >
Text File  |  1988-05-07  |  82KB  |  1,783 lines

  1. Alphabetical List of Commands and Variables
  2.  
  3. :entry "prefix-1" "Command"
  4. This reads the  next  character  and  runs  a  command  based  on  the
  5. character  typed.   If  you  wait  for more than a second or so before
  6. typing the next character, the message "ESC" will be  printed  on  the
  7. message line to remind you that JOVE is waiting for another character.
  8.  
  9. :entry "prefix-2" "Command"
  10. This reads the  next  character  and  runs  a  command  based  on  the
  11. character  typed.   If  you  wait  for more than a second or so before
  12. typing another character, the message "C-X" will  be  printed  on  the
  13. message line to remind you that JOVE is waiting for another character.
  14.  
  15. :entry "prefix-3" "Command"
  16. This reads the  next  character  and  runs  a  command  based  on  the
  17. character  typed.   If  you  wait  for more than a second or so before
  18. typing the next character, the character that invoked Prefix-3 will be
  19. printed  on  the  message  line to remind you that JOVE is waiting for
  20. another one.
  21.  
  22. :entry "abort-char" "Variable"
  23. This variable defines JOVE'S abort characer.  When the abort character
  24. is  typed,  the current JOVE command is aborted.  The default value is
  25. C-G.
  26.  
  27. :entry "add-lisp-special" "Command"
  28. This  command  is  to  tell  JOVE  what  identifiers  require  special
  29. indentation  in  lisp mode.  Lisp functions like defun and let are two
  30. of the default functions that get treated specially.  This is  just  a
  31. kludge to define some of your own.  It prompts for the function name.
  32.  
  33. :entry "allow-^S-and-^Q" "Variable"
  34. This variable, when set, tells JOVE that your terminal does  not  need
  35. to  use  the  characters  C-S and C-Q for flow control, and that it is
  36. okay to bind things to them.  This variable should  be  set  depending
  37. upon what kind of terminal you have.
  38.  
  39. :entry "allow-bad-filenames" "Variable"
  40. If set, this variable permits filenames to  contain  "bad"  characters
  41. such as those from the set *&%!"`[]{}.  These files are harder to deal
  42. with, because the characters mean something to the shell.  The default
  43. value is "off".
  44.  
  45. :entry "ansi-codes" "Command"
  46. When bound to "ESC [" this makes the arrow  keys,  and  various  other
  47. keys  on vt100-like terminals do the right thing.  For example, the up
  48. arrow key will move to the previous line.
  49.  
  50. :entry "append-region" "Command"
  51. This appends the region to a specified file.  If  the  file  does  not
  52. already exist it is created.
  53.  
  54. :entry "apropos" "Command"
  55. This types out  all  the  commands,  variables  and  macros  with  the
  56. specific  keyword  in  their  names.   For each command and macro that
  57. contains the string, the key sequence that can be used to execute  the
  58. command  or  macro  is  printed;  with variables, the current value is
  59. printed.  So, to find all the commands that are  related  to  windows,
  60. you type
  61.  
  62.      ESC X apropos window<Return>
  63.  
  64.  
  65. :entry "auto-case-abbrev" "Variable"
  66. When this  variable  is  on  (the  default),  word  abbreviations  are
  67. adjusted  for  case  automatically.   For  example, if "jove" were the
  68. abbreviation for "jonathan's own version of emacs", then typing "jove"
  69. would  give you "jonathan's own version of emacs", typing "Jove" would
  70. give you "Jonathan's own version of emacs", and  typing  "JOVE"  would
  71. give  you  "Jonathan's  Own  Version of Emacs".  When this variable is
  72. "off", upper and lower case are distinguished  when  looking  for  the
  73. abbreviation,  i.e., in the example above, "JOVE" and "Jove" would not
  74. be expanded unless they were defined separately.
  75.  
  76. :entry "auto-execute-command" "Command"
  77. This tells JOVE to execute a command automatically when a  file  whose
  78. name  matches  a  specified pattern is visited.  The first argument is
  79. the command you want executed and the second is a  regular  expression
  80. pattern that specifies the files that apply.  For example, if you want
  81. to be in show-match-mode when you edit C source files (that is,  files
  82. that end with ".c" or ".h") you can type
  83.  
  84.      ESC X auto-execute-command show-match-mode .*.[ch]$
  85.  
  86.  
  87. :entry "auto-execute-macro" "Command"
  88. This is like "auto-execute-command"  except  you  use  it  to  execute
  89. macros automatically instead of built-in commands.
  90.  
  91. :entry "auto-fill-mode" "Command"
  92. This turns on Auto Fill mode (or off if  it's  currently  on)  in  the
  93. selected  buffer.   When  JOVE  is  in Auto Fill mode it automatically
  94. breaks lines for you when you reach the right margin so you don't have
  95. to  remember  to hit Return.  JOVE uses 78 as the right margin but you
  96. can change that by setting  the  variable  "right-margin"  to  another
  97. value.  See the "set" command to learn how to do this.
  98.  
  99. :entry "auto-indent-mode" "Command"
  100. This turns on Auto Indent mode (or off if it's currently  on)  in  the
  101. selected buffer.  When JOVE is in Auto Indent mode, Return indents the
  102. new line to the same position as the line you were just on.   This  is
  103. useful  for  lining up C code (or any other language (but what else is
  104. there besides C?)).  This is out of date because of  the  new  command
  105. called   "newline-and-indent"   but  it  remains  because  of  several
  106. "requests" on the part of, uh, enthusiastic and excitable users,  that
  107. it be left as it is.
  108.  
  109. :entry "background-color" "Variable"
  110. This specifies the background color of the screen (PC  version  only).
  111. The default value is 0, which stands for black.
  112.  
  113. :entry "backward-character" "Command"
  114. This moves point backward over a single character.  If point is at the
  115. beginning of the line it moves to the end of the previous line.
  116.  
  117. :entry "backward-list" "Command"
  118. This moves backward over a list as opposed to  an  s-expression.   The
  119. difference between this and "backward-s-expression" is that this first
  120. searchs for a ")" and then moves to the matching "(".  This is  useful
  121. when you're trying to find unmatched parens in a program.
  122.  
  123. :entry "backward-paragraph" "Command"
  124. This moves point backward to the beginning of the current or  previous
  125. paragraph.   Paragraphs  are bounded by lines that begin with a Period
  126. or Tab, or by blank lines; a change in indentation may also  signal  a
  127. break  between paragraphs, except that JOVE allows the first line of a
  128. paragraph to be indented differently from the other lines.
  129.  
  130. :entry "backward-s-expression" "Command"
  131. This moves point backward  over  a  s-expression.   It  is  just  like
  132. "forward-s-expression" with a negative argument.
  133.  
  134. :entry "backward-sentence" "Command"
  135. This moves point backward to the beginning of the current or  previous
  136. sentence.   JOVE  considers the end of a sentence to be the characters
  137. ".", "!" or "?" followed by a Return or by one or more spaces.
  138.  
  139. :entry "backward-up-list" "Command"
  140. This is similar to "backward-s-expression" except it backs up and  OUT
  141. of  the  enclosing s-expression.  In other words, it moves backward to
  142. the "(" that would match a ")" if you were to type it right then.
  143.  
  144. :entry "backward-word" "Command"
  145. This moves point backward to the beginning of the current or  previous
  146. word.
  147.  
  148. :entry "bad-filename-extensions" "Variable"
  149. This contains a list of words separated by  spaces  which  are  to  be
  150. considered  bad  filename  extensions,  and  so will not be counted in
  151. filename completion.  The default is ".o" so if you  have  jove.c  and
  152. jove.o  in  the  same  directory,  the  filename  completion  will not
  153. complain of an ambiguity because it will ignore jove.o.
  154.  
  155. :entry "begin-kbd-macro" "Command"
  156. This starts defining the keyboard macro by remembering  all  your  key
  157. strokes until you execute "end-kbd-macro," by typing "C-X )".  Because
  158. of a bug in JOVE you shouldn't terminate the macro by  typing  "ESC  X
  159. end-kbd-macro";  "end-kbd-macro"  must be bound to "C-X )" in order to
  160. make things work correctly.  To execute the remembered key strokes you
  161. type  "C-X  E"  which runs the "execute-kbd-macro" command.  Sometimes
  162. you may want a macro to accept different input each time it runs.   To
  163. see how to do this, see the "make-macro-interactive" command.
  164.  
  165. :entry "beginning-of-file" "Command"
  166. This moves point backward  to  the  beginning  of  the  buffer.   This
  167. sometimes prints the "Point Pushed" message.  If the top of the buffer
  168. isn't on the screen JOVE will set the mark so you can go back to where
  169. you were if you want.
  170.  
  171. :entry "beginning-of-line" "Command"
  172. This moves point to the beginning of the current line.
  173.  
  174. :entry "beginning-of-window" "Command"
  175. This moves point to the beginning of the current window.  The sequence
  176. "ESC  ," is the same as "ESC <" (beginning of file) except without the
  177. shift key on the "<", and can thus can easily be remembered.
  178.  
  179. :entry "bind-macro-to-key" "Command"
  180. This is like "bind-to-key" except you use it to attach keys  to  named
  181. macros.
  182.  
  183. :entry "bind-macro-to-word-abbrev" "Command"
  184. This command allows you to bind a macro to a previously  defined  word
  185. abbreviation.   Whenever  you  type the abbreviation, it will first be
  186. expanded as an abbreviation, and then  the  macro  will  be  executed.
  187. Note  that  if  the  macro moves around, you should set the mark first
  188. (C-@) and then exchange the point and mark last (C-X C-X).
  189.  
  190. :entry "bind-to-key" "Command"
  191. This attaches a key to an internal JOVE command so that future hits on
  192. that  key  invoke  that command.  For example, to make "C-W" erase the
  193. previous word, you type "ESC X bind-to-key kill-previous-word C-W".
  194.  
  195. :entry "buffer-position" "Command"
  196. This displays the current file name, current line number, total number
  197. of  lines, percentage of the way through the file, and the position of
  198. the cursor in the current line.
  199.  
  200. :entry "c-indentation-increment" "Variable"
  201. This variable is not currently used.
  202.  
  203. :entry "c-mode" "Command"
  204. This turns on C mode in the currently selected buffer.  This is one of
  205. currently  four  possible  major  modes:   Fundamental, Text, C, Lisp.
  206. When in C or Lisp mode, Tab, "}", and ")" behave a little  differently
  207. from  usual:  They  are  indented to the "right" place for C (or Lisp)
  208. programs.  In JOVE, the "right" place is simply  the  way  the  author
  209. likes it (but I've got good taste).
  210.  
  211. :entry "case-character-capitalize" "Command"
  212. This capitalizes the character after point, i.e., the character  under
  213. the  cursor.   If a negative argument is supplied that many characters
  214. "before" point are upper cased.
  215.  
  216. :entry "case-ignore-search" "Variable"
  217. This variable, when set, tells JOVE to treat upper and lower  case  as
  218. the  same  when  searching.   Thus  "jove" and "JOVE" would match, and
  219. "JoVe" would match either.  The default  value  of  this  variable  is
  220. "off".
  221.  
  222. :entry "case-region-lower" "Command"
  223. This changes all the upper case letters in the region to  their  lower
  224. case equivalent.
  225.  
  226. :entry "case-region-upper" "Command"
  227. This changes all the lower case letters in the region to  their  upper
  228. case equivalent.
  229.  
  230. :entry "case-word-capitalize" "Command"
  231. This capitalizes the current word by making the current  letter  upper
  232. case  and  making  the rest of the word lower case.  Point is moved to
  233. the end of the word.  If point is not positioned on a word it is first
  234. moved  forward  to  the  beginning  of  the  next word.  If a negative
  235. argument is supplied that many words "before" point  are  capitalized.
  236. This  is  useful  for correcting the word just typed without having to
  237. move point to the beginning of the word yourself.
  238.  
  239. :entry "case-word-lower" "Command"
  240. This lower-cases the current word and leaves point at the end  of  it.
  241. If point is in the middle of a word the rest of the word is converted.
  242. If point is not in a word it is first moved forward to  the  beginning
  243. of  the next word.  If a negative argument is supplied that many words
  244. "before" point are converted  to  lower  case.   This  is  useful  for
  245. correcting  the  word  just  typed without having to move point to the
  246. beginning of the word yourself.
  247.  
  248. :entry "case-word-upper" "Command"
  249. This upper-cases the current word and leaves point at the end  of  it.
  250. If point is in the middle of a word the rest of the word is converted.
  251. If point is not in a word it is first moved forward to  the  beginning
  252. of  the next word.  If a negative argument is supplied that many words
  253. "before" point are converted  to  upper  case.   This  is  useful  for
  254. correcting  the  word  just  typed without having to move point to the
  255. beginning of the word yourself.
  256.  
  257. :entry "cd" "Command"
  258. This changes the current directory.
  259.  
  260. :entry "character-to-octal-insert" "Command"
  261. This inserts a Back-slash followed by the  ascii  value  of  the  next
  262. character typed.  For example, "C-G" inserts the string "\007".
  263.  
  264. :entry "clear-and-redraw" "Command"
  265. This clears the entire screen and redraws all the windows.   Use  this
  266. when JOVE gets confused about what's on the screen, or when the screen
  267. gets filled with garbage characters or output from another program.
  268.  
  269. :entry "comment-format" "Variable"
  270. This variable tells JOVE how to format your comments when you run  the
  271. command "fill-comment." Its format is this:
  272.  
  273.      <open pattern>%!<line header>%c<line trailer>%!<close pattern>
  274.  
  275. The %!, %c, and %! must appear  in  the  format;  everything  else  is
  276. optional.   A  newline  (represented  by %n) may appear in the open or
  277. close patterns.  %% is the representation for %.  The default  comment
  278. format is for C comments.  See "fill-comment" for more.
  279.  
  280. :entry "compile-it" "Command"
  281. This compiles your program by running the UNIX command "make"  into  a
  282. buffer,  and automatically parsing the error messages that are created
  283. (if any).  See the "parse-errors" command.  To  compile  a  C  program
  284. without  "make",  use "C-U C-X C-E" and JOVE will prompt for a command
  285. to run instead of make.  (And then the command you  type  will  become
  286. the default command.)  You can use this to parse the output from the C
  287. compiler or the "grep" or "lint" programs.   See  also  "error-format-
  288. string" to make it possible to parse errors of a different format.
  289.  
  290. :entry "continue-process" "Command"
  291. This sends SIGCONT  to  the  current  interactive  process,  "if"  the
  292. process is currently stopped.
  293.  
  294. :entry "copy-region" "Command"
  295. This takes all the text in the region and copies it onto the kill ring
  296. buffer.   This  is  just  like  running  "kill-region" followed by the
  297. "yank" command.  See the "kill-region" and "yank" commands.
  298.  
  299. :entry "current-error" "Command"
  300. This moves to the current error in the list of parsed errors.  See the
  301. "next-error"   and   "previous-error"   commands   for  more  detailed
  302. information.
  303.  
  304. :entry "date" "Command"
  305. This prints the date on the message line.
  306.  
  307. :entry "define-global-word-abbrev" "Command"
  308. This defines a global abbreviation.
  309.  
  310. :entry "define-macro" "Command"
  311. This provides a different  mechanism  for  defining  keyboard  macros.
  312. Instead  of  gathering keystrokes and storing them into the "keyboard-
  313. macro" (which is how "start-kbd-macro" works), "define-macro"  prompts
  314. for  a macro name (terminated with Space, or Newline) and then for the
  315. actual macro body.  If you wish to specify control characters  in  the
  316. macro,  you may simply insert them (using the "quoted-insert" command)
  317. or by inserting the character '^' followed by the  appropriate  letter
  318. for  that character (e.g., ^A would be the two characters '^' followed
  319. by 'A').  You may  use  Back-slash  to  prevent  the  '^'  from  being
  320. interpreted  as  part  of  a control character when you really wish to
  321. insert one (e.g., a macro body "\^foo" would insert the string  "^foo"
  322. into  the  buffer, whereas the body "^foo" would be the same as typing
  323. ^F and then inserting the string "oo").  See "write-macros-to-file" to
  324. see how to save macros.
  325.  
  326. :entry "define-mode-word-abbrev" "Command"
  327. This defines a mode-specific abbreviation.
  328.  
  329. :entry "delete-blank-lines" "Command"
  330. This deletes all the blank lines around point.  This  is  useful  when
  331. you previously opened many lines with "C-O" and now wish to delete the
  332. unused ones.
  333.  
  334. :entry "delete-buffer" "Command"
  335. This deletes a buffer and frees up all the memory associated with  it.
  336. Be  careful(!)  -  once  a buffer has been deleted it is gone forever.
  337. JOVE will ask you to confirm if you try to delete a buffer that  needs
  338. saving.   This  command  is  useful for when JOVE runs out of space to
  339. store new buffers.
  340.  
  341. :entry "delete-current-window" "Command"
  342. This deletes the current window  and  moves  point  into  one  of  the
  343. remaining  ones.   It  is an error to try to delete the only remaining
  344. window.
  345.  
  346. :entry "delete-macro" "Command"
  347. This deletes a macro from the list of named macros.  It is an error to
  348. delete  the  keyboard-macro.   Once  the  macro  is deleted it is gone
  349. forever.  If you are about to save macros to a  file  and  decide  you
  350. don't want to save a particular one, delete it.
  351.  
  352. :entry "delete-next-character" "Command"
  353. This deletes the character that's  just  after  point  (that  is,  the
  354. character  under  the  cursor).  If point is at the end of a line, the
  355. line separator is deleted and the next line is joined with the current
  356. one.
  357.  
  358. :entry "delete-other-windows" "Command"
  359. This deletes all the other windows except the current one.   This  can
  360. be thought of as going back into One Window mode.
  361.  
  362. :entry "delete-previous-character" "Command"
  363. This deletes the character that's just  before  point  (that  is,  the
  364. character  before  the  cursor).   If point is at the beginning of the
  365. line, the line separator is deleted and that line is joined  with  the
  366. previous one.
  367.  
  368. :entry "delete-white-space" "Command"
  369. This deletes all the Tabs and Spaces around point.
  370.  
  371. :entry "describe-bindings" "Command"
  372. This types out a list containing each bound key and the  command  that
  373. gets  invoked  every  time that key is typed.  To make a wall chart of
  374. JOVE commands, set "send-typeout-to-buffer"  to  "on"  and  JOVE  will
  375. store  the  key  bindings in a buffer which you can save to a file and
  376. then print.
  377.  
  378. :entry "describe-command" "Command"
  379. This prints some info on a specified command.
  380.  
  381. :entry "describe-key" "Command"
  382. This waits for you to type a key  and  then  tells  the  name  of  the
  383. command  that  gets invoked every time that key is hit.  Once you have
  384. the name of the command you can use the "describe-command" command  to
  385. find out exactly what it does.
  386.  
  387. :entry "describe-variable" "Command"
  388. This prints some info on a specified variable.
  389.  
  390. :entry "digit" "Command"
  391. This reads a numeric argument.  When you  type  "ESC"  followed  by  a
  392. number,  "digit"  keeps  reading  numbers  until  you  type some other
  393. command.  Then that command is executes with the numeric argument  you
  394. specified.
  395.  
  396. :entry "digit-1" "Command"
  397. This pretends you typed "ESC 1".  This is useful  for  terminals  that
  398. have  keypads  that  send  special  sequences for numbers typed on the
  399. keypad as opposed to numbers typed from the keyboard.  This  can  save
  400. having type "ESC" when you want to specify an argument.
  401.  
  402. :entry "digit-2" "Command"
  403. This pretends you typed "ESC 2".  This is useful  for  terminals  that
  404. have  keypads  that  send  special  sequences for numbers typed on the
  405. keypad as opposed to numbers typed from the keyboard.  This  can  save
  406. having type "ESC" when you want to specify an argument.
  407.  
  408. :entry "digit-3" "Command"
  409. This pretends you typed "ESC 3".  This is useful  for  terminals  that
  410. have  keypads  that  send  special  sequences for numbers typed on the
  411. keypad as opposed to numbers typed from the keyboard.  This  can  save
  412. having type "ESC" when you want to specify an argument.
  413.  
  414. :entry "digit-4" "Command"
  415. This pretends you typed "ESC 4".  This is useful  for  terminals  that
  416. have  keypads  that  send  special  sequences for numbers typed on the
  417. keypad as opposed to numbers typed from the keyboard.  This  can  save
  418. having type "ESC" when you want to specify an argument.
  419.  
  420. :entry "digit-5" "Command"
  421. This pretends you typed "ESC 5".  This is useful  for  terminals  that
  422. have  keypads  that  send  special  sequences for numbers typed on the
  423. keypad as opposed to numbers typed from the keyboard.  This  can  save
  424. having type "ESC" when you want to specify an argument.
  425.  
  426. :entry "digit-6" "Command"
  427. This pretends you typed "ESC 6".  This is useful  for  terminals  that
  428. have  keypads  that  send  special  sequences for numbers typed on the
  429. keypad as opposed to numbers typed from the keyboard.  This  can  save
  430. having type "ESC" when you want to specify an argument.
  431.  
  432. :entry "digit-7" "Command"
  433. This pretends you typed "ESC 7".  This is useful  for  terminals  that
  434. have  keypads  that  send  special  sequences for numbers typed on the
  435. keypad as opposed to numbers typed from the keyboard.  This  can  save
  436. having type "ESC" when you want to specify an argument.
  437.  
  438. :entry "digit-8" "Command"
  439. This pretends you typed "ESC 8".  This is useful  for  terminals  that
  440. have  keypads  that  send  special  sequences for numbers typed on the
  441. keypad as opposed to numbers typed from the keyboard.  This  can  save
  442. having type "ESC" when you want to specify an argument.
  443.  
  444. :entry "digit-9" "Command"
  445. This pretends you typed "ESC 9".  This is useful  for  terminals  that
  446. have  keypads  that  send  special  sequences for numbers typed on the
  447. keypad as opposed to numbers typed from the keyboard.  This  can  save
  448. having type "ESC" when you want to specify an argument.
  449.  
  450. :entry "digit-0" "Command"
  451. This pretends you typed "ESC 0".  This is useful  for  terminals  that
  452. have  keypads  that  send  special  sequences for numbers typed on the
  453. keypad as opposed to numbers typed from the keyboard.  This  can  save
  454. having type "ESC" when you want to specify an argument.
  455.  
  456. :entry "dirs" "Command"
  457. This prints out the directory stack.  See the  "cd",  "pushd",  "popd"
  458. commands for more info.
  459.  
  460. :entry "disable-biff" "Variable"
  461. When this is set, JOVE disables biff when you're editing  and  enables
  462. it  again  when  you  get out of JOVE, or when you pause to the parent
  463. shell or push to a new shell. (This means arrival of new mail will not
  464. be  immediately  apparent but will not cause indiscriminate writing on
  465. the display). The default is "off".
  466.  
  467. :entry "display-bad-filenames" "Variable"
  468. This variable affects only filename completion,  in  particular,  what
  469. happens  when  "?"  is  typed  while  prompting for a file.  When this
  470. variable is ON, any files that end with one of the extensions  defined
  471. by  the  variable  "bad-filename-extensions" will be displayed with an
  472. "!" in front of their names.  When "display-bad-filenames" is OFF  the
  473. files will not be displayed at all.  The default value is on.
  474.  
  475. :entry "down-list" "Command"
  476. This is the opposite of "backward-up-list." It's not clear to me  that
  477. this  command  serves any useful purpose in life.  Try it out, and let
  478. me know what you think.
  479.  
  480. :entry "dstop-process" "Command"
  481. Send the "dsusp" character  to  the  current  process.   This  is  the
  482. character  that suspends a process on the next read from the terminal.
  483. Most people have it set to C-Y.  This  only  works  if  you  have  the
  484. interactive  process  feature,  and  if you are in a buffer bound to a
  485. process.
  486.  
  487. :entry "edit-word-abbrevs" "Command"
  488. This creates a buffer with a list of each abbreviation and the  phrase
  489. it  expands  into,  and  enters a recursive edit to let you change the
  490. abbreviations  or  add  some  more.   The  format  of  this  list   is
  491. "abbreviation:phrase"  so  if you add some more you should follow that
  492. format.  It's probably simplest just to  copy  some  already  existing
  493. abbreviations  and edit them.  When you are done you type "C-X C-C" to
  494. exit the recursive edit.
  495.  
  496. :entry "end-kbd-macro" "Command"
  497. This stops the definition of the keyboard macro.  Because of a bug  in
  498. JOVE, this must be bound to "C-X )", or some key sequence which is one
  499. or two characters long.  Anything else will not work properly.
  500.  
  501. :entry "end-of-file" "Command"
  502. This moves point forward to the end of  the  buffer.   This  sometimes
  503. prints  the "Point Pushed" message.  If the end of the buffer isn't on
  504. the screen JOVE will set the mark so you can go back to where you were
  505. if you want.
  506.  
  507. :entry "end-of-line" "Command"
  508. This moves point to the end of the current line.  If the line  is  too
  509. long  to  fit  on  the screen JOVE will scroll the line to the left to
  510. make the end of the line visible.  The line will  slide  back  to  its
  511. normal  position  when  you  move  backward  past the leftmost visible
  512. character or when you move off the line altogether.
  513.  
  514. :entry "end-of-window" "Command"
  515. This moves point to the last character in the window.
  516.  
  517. :entry "eof-process" "Command"
  518. Sends EOF to the current interactive  process.   This  only  works  on
  519. versions of JOVE running under versions of UNIX with pty's.
  520.  
  521. :entry "erase-buffer" "Command"
  522. This erases the contents  of  the  specified  buffer.   This  is  like
  523. "delete-buffer"  except it only erases the contents of the buffer, not
  524. the buffer itself.  If you try to erase a buffer that needs saving you
  525. will be asked to confirm it.
  526.  
  527. :entry "error-format-string" "Variable"
  528. This is the error format string that is used by "parse-errors" to find
  529. the  error  messages  in  a buffer.  The way it works is by using this
  530. string as a JOVE regular expression search string, where the \('s  and
  531. \)'s  regular  expression operators are used to pick out the file name
  532. and line number from  the  line  containing  an  error  message.   For
  533. instance, a typical error message might look like this:
  534.  
  535.         "file.c", line 540: missing semi-colon
  536.  
  537. For strings of this format, an appropriate  value  for  "error-format-
  538. string" would be something like this:
  539.  
  540.         ^"\([^"]*\)", line \([0-9]*\):
  541.  
  542. What this means is, to find  an  error  message,  search  for  a  line
  543. beginning  with  a  double-quote.  Then it says that all the following
  544. characters up to another double-quote  should  be  remembered  as  one
  545. unit,  namely  the filename that the error is in (that's why the first
  546. set of parens are surrounding  it).   Then  it  says  that  after  the
  547. filename there will be the string ", line " followed by a line number,
  548. which should be remembered as a single unit (which is why  the  second
  549. set  of  parens  is  around  that).  The only constraints on the error
  550. messages is that the file name and line  number  appear  on  the  same
  551. line,  and  that  the  file name appears before the line number.  Most
  552. compilers seem to do this anyway,  so  this  is  not  an  unreasonable
  553. restriction.
  554.  
  555. If you do not know how to use regular expressions then  this  variable
  556. will  be  hard  for  you  to  use.  Also note that you can look at the
  557. default value of this variable by printing it out, but it is a  really
  558. complicated  string because it is trying to accommodate the outputs of
  559. more than one compiler at a time.
  560.  
  561. :entry "error-window-size" "Variable"
  562. This is the percentage of the screen to use for  the  error-window  on
  563. the   screen.   When  you  execute  "compile-it,"  "error-window-size"
  564. percent of the screen will go to the  error  window.   If  the  window
  565. already  exists  and  is a different size, it is made to be this size.
  566. The default value is 20%.
  567.  
  568. :entry "exchange-point-and-mark" "Command"
  569. This moves point to mark and makes mark the old point.   This  is  for
  570. quickly moving from one end of the region to another.
  571.  
  572. :entry "execute-kbd-macro" "Command"
  573. This executes the keyboard macro.  If you supply  a  numeric  argument
  574. the macro is executed that many times.
  575.  
  576. :entry "execute-macro" "Command"
  577. This executes a specified macro.  If you supply a numeric argument the
  578. macro is executed that many times.
  579.  
  580. :entry "execute-named-command" "Command"
  581. This is the way to execute a command that  isn't  bound  to  any  key.
  582. When  you are prompted with ": " you can type the name of the command.
  583. You don't  have  to  type  the  entire  name.   Once  the  command  is
  584. unambiguous you can type Space and JOVE will fill in the rest for you.
  585. If you are not sure of the name of the command, type "?" and JOVE will
  586. print  a  list of all the commands that you could possibly match given
  587. what you've already typed.  If  you  don't  have  any  idea  what  the
  588. command's  name  is  but  you know it has something to do with windows
  589. (for example), you can do "ESC X apropos window" and JOVE will print a
  590. list  of  all  the  commands that are related to windows.  If you find
  591. yourself constantly executing the same commands this way you  probably
  592. want  to  bind them to keys so that you can execute them more quickly.
  593. See the "bind-to-key" command.
  594.  
  595. :entry "exit-jove" "Command"
  596. This exits JOVE.  If any buffers need saving JOVE will print a warning
  597. message  and  ask  for confirmation.  If you leave without saving your
  598. buffers all your work will be lost.  If you made a mistake and  really
  599. do want to exit then you can.  If you are in a recursive editing level
  600. "exit-jove" will return you from that.
  601.  
  602. :entry "expand-environment-variables" "Command"
  603. When this variable is on JOVE will try to expand any  strings  of  the
  604. form  "$var"  into the value of the environment variable "var" when in
  605. the minibuffer.  For example, if you type $HOME/.joverc, "$HOME"  will
  606. be replaced with you home directory.  The default value is off.
  607.  
  608. :entry "file-creation-mode" "Variable"
  609. This  variable  has  an  octal  value.   It  contains  the  mode  (see
  610. "chmod(1)"  )  with  which  files  should  be created.  This mode gets
  611. modified by your current umask setting (see "umask(1)" ).  The default
  612. value is usually "0666" or "0644."
  613.  
  614. :entry "files-should-end-with-newline" "Variable"
  615. This variable indicates that all files should always have a newline at
  616. the  end.   This  is  often  necessary for line printers and the like.
  617. When set, if JOVE is writing a file whose  last  character  is  not  a
  618. newline, it will add one automatically.
  619.  
  620. :entry "fill-comment" "Command"
  621. This command fills  in  your  C  comments  to  make  them  pretty  and
  622. readable.   This  filling  is  done  according  the variable "comment-
  623. format."
  624.  
  625.      /*
  626.       * the default format makes comments like this.
  627.       */
  628.  
  629. This can be changed by changing the format variable.  Other  languages
  630. may  be  supported by changing the format variable appropriately.  The
  631. formatter looks backwards from dot for an  open  comment  symbol.   If
  632. found,  all  indentation  is  done  relative the position of the first
  633. character of the open symbol.  If there is a  matching  close  symbol,
  634. the  entire  comment is formatted.  If not, the region between dot and
  635. the open symbol is reformatted.
  636.  
  637. :entry "fill-paragraph" "Command"
  638. This rearranges words between lines so  that  all  the  lines  in  the
  639. current  paragraph  extend  as  close to the right margin as possible,
  640. ensuring that none of the lines will be greater than the right margin.
  641. The  default  value  for "right-margin" is 78, but can be changed with
  642. the "set" and "right-margin-here" commands.  JOVE  has  a  complicated
  643. algorithm  for determining the beginning and end of the paragraph.  In
  644. the normal case JOVE will give all the lines the same indent  as  they
  645. currently have, but if you wish to force a new indent you can supply a
  646. numeric argument to "fill-paragraph" (e.g., by typing C-U ESC  J)  and
  647. JOVE  will  indent  each  line  to  the column specified by the "left-
  648. margin" variable.  See also  the  "left-margin"  variable  and  "left-
  649. margin-here" command.
  650.  
  651. :entry "fill-region" "Command"
  652. This is like "fill-paragraph," except it operates on a region  instead
  653. of just a paragraph.
  654.  
  655. :entry "filter-region" "Command"
  656. This sends the text in the region to a UNIX command, and replaces  the
  657. region  with  the  output  from that command.  For example, if you are
  658. lazy and don't like to take the time  to  write  properly  indented  C
  659. code, you can put the region around your C file and "filter-region" it
  660. through "cb," the UNIX C beautifier.  If you have a file that contains
  661. a  bunch  of  lines that need to be sorted you can do that from inside
  662. JOVE too, by filtering the region through  the  "sort"  UNIX  command.
  663. Before output from the command replaces the region JOVE stores the old
  664. text in the kill ring, so if you are unhappy with the results you  can
  665. easily get back the old text with "C-Y".
  666.  
  667. :entry "find-file" "Command"
  668. This visits a file into its own buffer and then selects  that  buffer.
  669. If  you've already visited this file in another buffer, that buffer is
  670. selected.  If the file doesn't yet exist, JOVE will print "(New file)"
  671. so that you know.
  672.  
  673. :entry "find-tag" "Command"
  674. This finds the file that contains the specified tag.   JOVE  looks  up
  675. tags  by default in the "tags" file in the current directory.  You can
  676. change the default tag name by  setting  the  "tag-file"  variable  to
  677. another  name.  If you specify a numeric argument to this command, you
  678. will be prompted for a tag file.   This  is  a  good  way  to  specify
  679. another  tag  file without changing the default.  If the tag cannot be
  680. found the error is reported and point stays where it is.
  681.  
  682. :entry "find-tag-at-point" "Command"
  683. This finds the file that contains the tag that point is currently  on.
  684. See "find-tag."
  685.  
  686. :entry "first-non-blank" "Command"
  687. This moves point back to the indent of the current line.
  688.  
  689. :entry "foreground-color" "Variable"
  690. This specifies the foreground color of the screen (PC  version  only).
  691. The  default  is  1,  which  stands for white.  The attribute used for
  692. writing to the screen is formed by (bg&7)<<4 & (fg&7).
  693.  
  694. :entry "forward-character" "Command"
  695. This moves forward over a single character.  If point is at the end of
  696. the line it moves to the beginning of the next one.
  697.  
  698. :entry "forward-list" "Command"
  699. This is like "forward-s-expression" except it moves over  lists  ONLY.
  700. What  this  does  is  search  for  the  next  "(" and then move to the
  701. matching ")".  This  is  useful  for  when  you  are  trying  to  find
  702. mismatched parentheses in a program.
  703.  
  704. :entry "forward-paragraph" "Command"
  705. This moves point forward to the end of the current or next  paragraph.
  706. Paragraphs are bounded by lines that begin with a Period or Tab, or by
  707. blank lines; a change in indentation may also signal a  break  between
  708. paragraphs,  except  that JOVE allows the first line of a paragraph to
  709. be indented differently from the other lines.
  710.  
  711. :entry "forward-s-expression" "Command"
  712. This  moves  point  forward  over  a  s-expression.   If   the   first
  713. significant character after point is "(", this moves past the matching
  714. ")".  If the character begins an identifier, this moves just past  it.
  715. This  is mode dependent, so this will move over atoms in LISP mode and
  716. C identifiers in C mode.  JOVE also matches "{".
  717.  
  718. :entry "forward-sentence" "Command"
  719. This moves point forward to the end of the current or  next  sentence.
  720. JOVE  considers the end of a sentence to be the characters ".", "!" or
  721. "?" followed by a Return, or one or more spaces.
  722.  
  723. :entry "forward-word" "Command"
  724. This moves point forward to the end of the current or next word.
  725.  
  726. :entry "fundamental-mode" "Command"
  727. This sets the major mode  to  Fundamental.   This  affects  what  JOVE
  728. considers  as  characters  that  make up words.  For instance, Single-
  729. quote is not part of a word in Fundamental mode, but is in Text mode.
  730.  
  731. :entry "gather-numeric-argument" "Command"
  732. This command is one of two ways to specify a  numeric  argument  to  a
  733. command.   It's  usually  bound to C-U.  Typing C-U once means, Do the
  734. next command 4 times.  Typing C-U twice will do the  next  command  16
  735. times, and so on.  If at any point you type a number, then that number
  736. will be used instead of 4.  For instance, C-U 3 5 means  do  the  next
  737. command 35 times.
  738.  
  739. :entry "goto-line" "Command"
  740. If a numeric argument is supplied point moves to the beginning of that
  741. line.  If no argument is supplied one is prompted for.
  742.  
  743. :entry "goto-window-with-buffer" "Command"
  744. This command prompts for a buffer name and then  select  that  buffer.
  745. If the buffer is currently being displayed in one of the windows, that
  746. window is selected instead.
  747.  
  748. :entry "grind-s-expr" "Command"
  749. When  point  is  positioned  on  a  "(",  this  re-indents  that  LISP
  750. expression.
  751.  
  752. :entry "grow-window" "Command"
  753. This makes the current window one line bigger.  This only  works  when
  754. there is more than one window and provided there is room to change the
  755. size.
  756.  
  757. :entry "handle-tab" "Command"
  758. This handles indenting to the "right" place in C and  Lisp  mode,  and
  759. just inserts itself in Text mode.
  760.  
  761. :entry "i-search-forward" "Command"
  762. Incremental  search.   Like  search-forward  except  that  instead  of
  763. prompting  for  a string and searching for that string all at once, it
  764. accepts the string one character at a time.  After each character  you
  765. type  as  part of the search string, it searches for the entire string
  766. so far.  When you like what it found, type the Return  key  to  finish
  767. the  search.  You can take back a character with Rubout and the search
  768. will back up to the position before that  character  was  typed.   C-G
  769. aborts the search.
  770.  
  771. :entry "i-search-reverse" "Command"
  772. Incremental  search.   Like  search-reverse  except  that  instead  of
  773. prompting  for  a string and searching for that string all at once, it
  774. accepts the string one character at a time.  After each character  you
  775. type  as  part of the search string, it searches for the entire string
  776. so far.  When you like what it found, type the Return  key  to  finish
  777. the  search.  You can take back a character with Rubout and the search
  778. will back up to the position before that  character  was  typed.   C-G
  779. aborts the search.
  780.  
  781. :entry "i-shell-command" "Command"
  782. This is like "shell-command" except it lets  you  continue  with  your
  783. editing  while the command is running.  This is really useful for long
  784. running commands with sporadic output.  See the manual for information
  785. on how to use interactive processes.
  786.  
  787. :entry "insert-file" "Command"
  788. This inserts a specified file into the current buffer at point.  Point
  789. is positioned at the beginning of the inserted file.
  790.  
  791. :entry "internal-tabstop" "Variable"
  792. The number of  spaces  JOVE  should  print  when  it  displays  a  tab
  793. character.  The default value is 8.
  794.  
  795. :entry "interrupt-character" "Variable"
  796. This is set to the character that interrupts JOVE (with a  signal)  no
  797. matter  what  JOVE  is  doing.  It's main use is for interrupting non-
  798. interactive  processes,  but  it  also   has   uses   for   debugging.
  799. Unfortunately there is no way to turn off the interrupt character.
  800.  
  801. :entry "interrupt-process" "Command"
  802. This sends the interrupt character (usually C-C)  to  the  interactive
  803. process in the current buffer.  This is only for versions of JOVE that
  804. have the interactive processes feature.  This only works when you  are
  805. inside a buffer that's attached to a process.
  806.  
  807. :entry "kill-next-word" "Command"
  808. This kills the text from point to the end of the current or next word.
  809.  
  810. :entry "kill-previous-word" "Command"
  811. This kills the text from point to the  beginning  of  the  current  or
  812. previous word.
  813.  
  814. :entry "kill-process" "Command"
  815. This command prompts for a buffer  name  or  buffer  number  (just  as
  816. select-buffer  does)  and then sends the process in that buffer a kill
  817. signal (9).
  818.  
  819. :entry "kill-region" "Command"
  820. This deletes the text in the region and saves it  on  the  kill  ring.
  821. Commands  that  delete  text but save it on the kill ring all have the
  822. word "kill" in their names.  Type "C-Y" to yank back the  most  recent
  823. kill.
  824.  
  825. :entry "kill-s-expression" "Command"
  826. This kills the text from point to the end of the current  or  next  s-
  827. expression.
  828.  
  829. :entry "kill-some-buffers" "Command"
  830. This goes through all the existing buffers and asks whether or not  to
  831. kill  them.  If you decide to kill a buffer, and it turns out that the
  832. buffer is modified, JOVE will offer to save it first.  This is  useful
  833. for  when JOVE runs out of memory to store lines (this only happens on
  834. PDP-11's) and you have lots of buffers that you are no longer using.
  835.  
  836. :entry "kill-to-beginning-of-sentence" "Command"
  837. This kills from point to the beginning  of  the  current  or  previous
  838. sentence.
  839.  
  840. :entry "kill-to-end-of-line" "Command"
  841. This kills from point to the end of the current line.  When  point  is
  842. at the end of the line the line separator is deleted and the next line
  843. is joined with current one.  If a numeric argument  is  supplied  that
  844. many  lines  are  killed;  if the argument is negative that many lines
  845. "before" point are killed; if the argument is zero the text from point
  846. to the beginning of the line is killed.
  847.  
  848. :entry "kill-to-end-of-sentence" "Command"
  849. This kills from point to the end of the current or next sentence.   If
  850. a  negative  numeric  argument  is supplied it kills from point to the
  851. beginning of the current or previous sentence.
  852.  
  853. :entry "left-margin" "Variable"
  854. This is how far lines should be indented when auto-indent mode is  on,
  855. or  when  the  "newline-and-indent"  command is run (usually by typing
  856. LineFeed).  It is also used by fill-paragraph and auto-fill mode.   If
  857. the  value  is  zero  (the default) then the left margin is determined
  858. from the surrounding lines.
  859.  
  860. :entry "left-margin-here" "Command"
  861. This sets the "left-margin" variable to the current position of point.
  862. This is an easy way to say, "Make the left margin begin here," without
  863. having to count the number of spaces over it actually is.
  864.  
  865. :entry "lisp-mode" "Command"
  866. This turns on Lisp mode.  Lisp mode is one of four mutually  exclusive
  867. major  modes:  Fundamental,  Text,  C,  and  Lisp.   In Lisp mode, the
  868. characters Tab and ) are treated specially, similar to  the  way  they
  869. are  treated  in  C  mode.   Also,  Auto  Indent mode is affected, and
  870. handled specially.
  871.  
  872. :entry "list-buffers" "Command"
  873. This types out  a  list  containing  various  information  about  each
  874. buffer.  Right now that list looks like this:
  875.  
  876.       (* means the buffer needs saving)
  877.       NO  Lines Type        Name           File
  878.       --  ----- ----        ----           ----
  879.       1   1     File        Main           [No file]
  880.       2   1     Scratch   * Minibuf        [No file]
  881.       3   519   File      * commands.doc   commands.doc
  882.  
  883. The first column lists the buffer's number.  When JOVE prompts  for  a
  884. buffer  name  you  can either type in the full name, or you can simply
  885. type the buffer's number.  The second column is the number of lines in
  886. the  buffer.   The  third  says  what  type of buffer.  There are four
  887. types: "File", "Scratch", "Process", "I-Process".  "File" is simply  a
  888. buffer  that  holds  a  file;  "Scratch" is for buffers that JOVE uses
  889. internally; "Process" is  one  that  holds  the  output  from  a  UNIX
  890. command;  "I-Process"  is one that has an interactive process attached
  891. to it.  The next column contains the name of the buffer.  And the last
  892. column is the name of the file that's attached to the buffer.  In this
  893. case, both Minibuf and commands.doc have  been  changed  but  not  yet
  894. saved.   In  fact  Minibuf  won't be saved since it's an internal JOVE
  895. buffer that I don't even care about.
  896.  
  897. :entry "list-processes" "Command"
  898. This makes a list somewhat like "list-buffers" does, except  its  list
  899. consists  of  the  current  interactive processes.  Right now the list
  900. looks like this:
  901.  
  902.       Buffer           Status           Pid    Command
  903.       ------           ------           ---    -------
  904.       *shell*          Running          18415shell
  905.       fgrep            Done             18512   fgrep -n Buffer *.c
  906.  
  907. The first column has the name of the buffer to which  the  process  is
  908. attached.   The second has the status of the process; if a process has
  909. exited normally the status is "Done"  as  in  fgrep;  if  the  process
  910. exited  with  an  error the status is "Exit N" where N is the value of
  911. the exit code; if the process was killed by some signal the status  is
  912. the  name  of  the  signal  that  was  used;  otherwise the process is
  913. running.  The last column is the name of the  command  that  is  being
  914. run.
  915.  
  916. :entry "mail-check-frequency" "Variable"
  917. This is how often (in seconds) JOVE  should  check  your  mailbox  for
  918. incoming mail.  See also the "mailbox" and "disable-biff" variables.
  919.  
  920. :entry "mailbox" "Variable"
  921. Set this to the full pathname of your mailbox.  JOVE will look here to
  922. decide  whether  or  not  you  have any unread mail.  This defaults to
  923. /usr/spool/mail/$USER, where $USER is set to your login name.
  924.  
  925. :entry "make-backup-files" "Variable"
  926. If this variable is set, then whenever JOVE writes out a file, it will
  927. move  the  previous  version  of  the  file  (if  there  was  one)  to
  928. "#filename".  This is often convenient if you save a file by accident.
  929. The  default  value  of  this  variable  is "off".  "Note:" this is an
  930. optional part of JOVE, and your guru may not have it  enabled,  so  it
  931. may not work.
  932.  
  933. :entry "make-buffer-unmodified" "Command"
  934. This makes JOVE think the selected buffer hasn't been changed even  if
  935. it  has.   Use  this when you accidentally change the buffer but don't
  936. want it considered  changed.   Watch  the  mode  line  to  see  the  *
  937. disappear when you use this command.
  938.  
  939. :entry "make-macro-interactive" "Command"
  940. This command is meaningful only while  you  are  defining  a  keyboard
  941. macro, and when you are in the minibuffer.  Ordinarily, when a command
  942. in a macro definition requires a trailing text  argument  (file  name,
  943. search  string,  etc.),  the  argument  you supply becomes part of the
  944. macro definition.  If you want  to  be  able  to  supply  a  different
  945. argument  each time the macro is used, then while you are defining it,
  946. you should give the make-macro-interactive command just before  typing
  947. the  argument which will be used during the definition process.  Note:
  948. you must bind this command to a key in order to use it; you can't  say
  949. "ESC X make-macro-interactive".
  950.  
  951. :entry "mark-threshold" "Variable"
  952. This variable contains the number of lines point may  move  by  before
  953. the  mark  is  set.  If, in a search or something, point moves by more
  954. than this many lines, the mark is set so that you may  return  easily.
  955. The  default  value  of  this  variable  is 22 (one screenful, on most
  956. terminals).
  957.  
  958. :entry "marks-should-float" "Variable"
  959. When this variable is "off", the position of a mark is remembered as a
  960. line  number within the buffer and a character number within the line.
  961. If you add or delete text before the mark, it will no longer point  to
  962. the  text  you marked originally because that text is no longer at the
  963. same line and character number.   When  this  variable  is  "on",  the
  964. position  of  a  mark is adjusted to compensate for each insertion and
  965. deletion.  This makes marks much more sensible to use, at the cost  of
  966. slowing  down  insertion  and deletion somewhat.  The default value is
  967. "on".
  968.  
  969. :entry "match-regular-expressions" "Variable"
  970. When set, JOVE will match  regular  expressions  in  search  patterns.
  971. This  makes  special the characters ., *, [, ], ^, and $, and the two-
  972. character sequences \<, \>, \{, \} and \|.   See  the  "ed(1)"  manual
  973. page,  the  tutorial "Advanced Editing in UNIX", and the section above
  974. "Searching with Regular Expressions" for more information.
  975.  
  976. :entry "meta-key" "Variable"
  977. You should set this variable to "on" if your terminal has a real  Meta
  978. key.   If your terminal has such a key, then a key sequence like ESC Y
  979. can be entered by  holding  down  Meta  and  typing  Y.   NOTE:   This
  980. disables interrupting noninteractive shell commands.
  981.  
  982. :entry "mode-line" "Variable"
  983. The format of  the  mode  line  can  be  determined  by  setting  this
  984. variable.   The  items  in  the  line  are specified using a printf(3)
  985. format, with the special things being marked as "%x".  Digits  may  be
  986. used between the 'x' may be:
  987.  
  988.           C    check for new mail, and displays "[New mail]" if there
  989.                is any (see also the mail-check-interval and disable-biff
  990.                variables)
  991.           F    the current file name, with leading path stripped
  992.           M    the current list of major and minor modes
  993.           b    the current buffer name
  994.           c    the fill character (-)
  995.           d    the current directory
  996.           e    end of string--this must be the last item in the string
  997.           f    the current file name
  998.           l    the current load average (updated automatically)
  999.           mxy  x, when the buffer is modified or y, when not
  1000.           n    the current buffer number
  1001.           s    space, but only if previous character is not a space
  1002.           t    the current time (updated automatically)
  1003.           [ ]  the square brackets printed when in a recursive edit
  1004.           ( )  items enclosed in %( ... %) will only be printed on
  1005.                the bottom mode line, rather than copied when the
  1006.                window is split
  1007.  
  1008. In addition, any other character is simply copied into the mode  line.
  1009. Characters  may  be  escaped  with a backslash.  To get a feel for all
  1010. this, try typing "ESC X print mode-line" and compare the  result  with
  1011. your current mode line.
  1012.  
  1013. :entry "mode-line-color" "Variable"
  1014. This specifies the color of  the  modeline  (PC  version  only).   Its
  1015. default value is 0, and in that case it is drawn in reverse video.  If
  1016. it has any other value, this value is used as  the  attribute  in  the
  1017. Bios calls.
  1018.  
  1019. :entry "mode-line-should-standout" "Variable"
  1020. If set, the mode line will  be  printed  in  reverse  video,  if  your
  1021. terminal supports it.  The default for this variable is "off".
  1022.  
  1023. :entry "name-kbd-macro" "Command"
  1024. This copies the keyboard macro and gives it  a  name  freeing  up  the
  1025. keyboard  macro  so  you  can  define some more.  Keyboard macros with
  1026. their own names can be bound to keys just like built in commands  can.
  1027. See the "define-macro," "source" and "write-macros-to-file" commands.
  1028.  
  1029. :entry "newline" "Command"
  1030. This divides the current line at point moving  all  the  text  to  the
  1031. right  of point down onto the newly created line.  Point moves down to
  1032. the beginning of the new line.
  1033.  
  1034. :entry "newline-and-backup" "Command"
  1035. This divides the current line at point moving  all  the  text  to  the
  1036. right  of  point  down  onto  the  newly created line.  The difference
  1037. between this and "newline" is that point does not  move  down  to  the
  1038. beginning of the new line.
  1039.  
  1040. :entry "newline-and-indent" "Command"
  1041. This behaves the same was as Return does when  in  Auto  Indent  mode.
  1042. This  makes  Auto  Indent  mode obsolete but it remains in the name of
  1043. backward compatibility.
  1044.  
  1045. :entry "next-error" "Command"
  1046. This moves to the next error in the list of errors  that  were  parsed
  1047. with  "parse-errors."  In  one window the list of errors is shown with
  1048. the current one always at the top.  In another window is the file that
  1049. contains  the  error.   Point is positioned in this window on the line
  1050. where the error occurred.
  1051.  
  1052. :entry "next-line" "Command"
  1053. This moves down to the next line.
  1054.  
  1055. :entry "next-page" "Command"
  1056. This displays the next page of the buffer by taking the bottom line of
  1057. the  window  and  redrawing  the  window with it at the top.  If there
  1058. isn't another page in the buffer JOVE rings the bell.   If  a  numeric
  1059. argument is supplied the screen is scrolled up that many lines; if the
  1060. argument is negative the screen is scrolled down.
  1061.  
  1062. :entry "next-window" "Command"
  1063. This moves into the next window.  Windows live in a circular  list  so
  1064. when  you're  in the bottom window and you try to move to the next one
  1065. you are moved to the top window.  It is an error to use  this  command
  1066. with only one window.
  1067.  
  1068. :entry "number-lines-in-window" "Command"
  1069. This displays the line numbers for  each  line  in  the  buffer  being
  1070. displayed.   The  number  isn't  actually  part of the text; it's just
  1071. printed before the actual buffer line is.  To turn this  off  you  run
  1072. the command again; it toggles.
  1073.  
  1074. :entry "over-write-mode" "Command"
  1075. This turns Over Write mode on (or off if it's  currently  on)  in  the
  1076. selected  buffer.   When  on,  this  mode  changes  the  way the self-
  1077. inserting  characters  work.   Instead  of  inserting  themselves  and
  1078. pushing  the rest of the line over to the right, they replace or over-
  1079. write the existing character.  Also,  Rubout  replaces  the  character
  1080. before  point  with  a  space instead of deleting it.  When Over Write
  1081. mode is on "OvrWt" is displayed on the mode line.
  1082.  
  1083. :entry "page-next-window" "Command"
  1084. This displays the next page in the next window.  This is  exactly  the
  1085. same as "C-X N C-V C-X P".
  1086.  
  1087. :entry "paren-flash" "Command"
  1088. This handles the C mode curly brace indentation, the Lisp  mode  paren
  1089. indentation,  and the Show Match mode paren/curly brace/square bracket
  1090. flashing.
  1091.  
  1092. :entry "paren-flash-delay" "Variable"
  1093. How long, in tenths of  seconds,  JOVE  should  pause  on  a  matching
  1094. parenthesis in "Show" mode.  The default is 5.
  1095.  
  1096. :entry "parse-errors" "Command"
  1097. This takes the list of C compilation errors (or  output  from  another
  1098. program  in the same format) in the current buffer and parses them for
  1099. use with the "next-error"  and  "previous-error"  and  "current-error"
  1100. commands.   This  is  a  very  useful  tool and helps with compiling C
  1101. programs and when used in conjunction with  the  "grep"  UNIX  command
  1102. very  helpful  in  making  changes  to a bunch of files.  This command
  1103. understands errors produced by cc,  cpp,  and  lint;  plus  any  other
  1104. program with the same format (e.g., "grep -n").  JOVE visits each file
  1105. that has an error and remembers each line that contains an error.   It
  1106. doesn't matter if later you insert or delete some lines in the buffers
  1107. containing  errors;  JOVE  remembers  where   they   are   regardless.
  1108. "current-error"  is  automatically  executed  after  one  of the parse
  1109. commands, so you end up at the first error.  See  also  "error-format-
  1110. string" to make it possible to parse errors of a different format.
  1111.  
  1112. :entry "parse-spelling-errors-in-buffer" "Command"
  1113. This parses a list of words in the current buffer and looks them up in
  1114. another buffer that you specify.  This will probably go away soon.
  1115.  
  1116. :entry "pause-jove" "Command"
  1117. This stops JOVE and returns control to the parent  shell.   This  only
  1118. works  for  users  using the C-shell, and on systems that have the job
  1119. control facility.  To return to JOVE you type "fg" to the C-shell.
  1120.  
  1121. :entry "physical-tabstop" "Variable"
  1122. How many spaces your terminal prints when it prints a tab character.
  1123.  
  1124. :entry "pop-mark" "Command"
  1125. This gets executed when you run "set-mark" with  a  numeric  argument.
  1126. JOVE remembers the last 16 marks and you use "pop-mark" to go backward
  1127. through the ring of marks.  If you execute "pop-mark" enough times you
  1128. will eventually get back to where you started.
  1129.  
  1130. :entry "popd" "Command"
  1131. This pops one entry off the directory stack.  Entries are pushed  with
  1132. the  "pushd"  command.  The names were stolen from the C-shell and the
  1133. behavior is the same.
  1134.  
  1135. :entry "previous-error" "Command"
  1136. This is the same as "next-error" except it goes to the previous error.
  1137. See "next-error" for documentation.
  1138.  
  1139. :entry "previous-line" "Command"
  1140. This moves up to the previous line.
  1141.  
  1142. :entry "previous-page" "Command"
  1143. This displays the previous page of the current buffer  by  taking  the
  1144. top line and redrawing the window with it at the bottom.  If a numeric
  1145. argument is supplied the screen is scrolled down that many  lines;  if
  1146. the argument is negative the screen is scrolled up.
  1147.  
  1148. :entry "previous-window" "Command"
  1149. This moves into the next window.  Windows live in a circular  list  so
  1150. when  you're in the top window and you try to move to the previous one
  1151. you are moved to the bottom window.   It  is  an  error  to  use  this
  1152. command with only one window.
  1153.  
  1154. :entry "print" "Command"
  1155. This prints the value of a JOVE variable.
  1156.  
  1157. :entry "process-bind-to-key" "Command"
  1158. This command is identical to bind-to-key, except that it only  affects
  1159. your  bindings  when  you are in a buffer attached to a process.  When
  1160. you enter the process buffer, any keys bound with  this  command  will
  1161. automatically take their new values.  When you switch to a non-process
  1162. buffer, the old  bindings  for  those  keys  will  be  restored.   For
  1163. example, you might want to execute
  1164.  
  1165.      process-bind-to-key stop-process ^Z
  1166.      process-bind-to-key interrupt-process ^C
  1167.  
  1168. Then, when you start up an interactive process and  switch  into  that
  1169. buffer,  C-Z will execute stop-process and C-C will execute interrupt-
  1170. process.  When you switch back to a non-process buffer,  C-Z  will  go
  1171. back to executing scroll-up (or whatever you have it bound to).
  1172.  
  1173. :entry "process-newline" "Command"
  1174. This this only gets executed when in a buffer that is attached  to  an
  1175. interactive-process.   JOVE  does  two  different  things depending on
  1176. where you are when you hit Return.  When you're at the end of  the  I-
  1177. Process  buffer  this  does  what Return normally does, except it also
  1178. makes the line available to the process.  When point is positioned  at
  1179. some other position that line is copied to the end of the buffer (with
  1180. the prompt stripped) and point is moved there with it, so you can then
  1181. edit  that line before sending it to the process.  This command "must"
  1182. be bound to the key you usually use to enter shell commands  (Return),
  1183. or else you won't be able to enter any.
  1184.  
  1185. :entry "process-prompt" "Variable"
  1186. What a prompt looks like from the shell and i-shell-command processes.
  1187. The  default  is "% ", the default C-shell prompt.  This is actually a
  1188. regular expression search string.  So you can set it to be  more  than
  1189. one  thing  at  once  using  the  \| operator.  For instance, for LISP
  1190. hackers, the prompt can be
  1191.  
  1192.      "% \|-> \|<[0-9]>: ".
  1193.  
  1194.  
  1195. :entry "process-send-data-no-return" "Command"
  1196. This is like "process-newline"  except  it  sends  everything  to  the
  1197. process  without  the  newline.   Normally,  when you type return in a
  1198. process buffer it sends everything you  typed  including  the  Return.
  1199. This  command  just provides a way to send data to the process without
  1200. having to send a newline as well.
  1201.  
  1202. :entry "push-shell" "Command"
  1203. This spawns a child shell and relinquishes control to it.  This  works
  1204. on any version of UNIX, but this isn't as good as "pause-jove" because
  1205. it takes time to start up the new  shell  and  you  get  a  brand  new
  1206. environment every time.  To return to JOVE you type "C-D".
  1207.  
  1208. :entry "pushd" "Command"
  1209. This pushes a directory onto the directory stack and cd's into it.  It
  1210. asks  for  the directory name but if you don't specify one it switches
  1211. the top two entries no the stack.  It purposely behaves  the  same  as
  1212. C-shell's "pushd."
  1213.  
  1214. :entry "pwd" "Command"
  1215. This prints the working directory.
  1216.  
  1217. :entry "query-replace-string" "Command"
  1218. This replaces the occurrences of a specified string with  a  specified
  1219. replacement  string.  When an occurrence is found point is moved to it
  1220. and then JOVE asks what to do.  The options are:
  1221.  
  1222.      Space    to replace this occurrence and go on to the next one.
  1223.      Period   to replace this occurrence and then stop.
  1224.      Rubout   to skip this occurrence and go on to the next one.
  1225.      C-R      to enter a recursive edit.  This lets you temporarily
  1226.               suspend the replace, do some editing, and then return
  1227.               to continue where you left off.  To continue with the
  1228.               Query Replace type "C-X C-C" as if you were trying to
  1229.               exit JOVE.  Normally you would but when you are in a
  1230.               recursive edit all it does is exit that recursive
  1231.               editing level.
  1232.      C-W      to delete the matched string and then enter a recursive
  1233.               edit.
  1234.      U        to undo the last replacement.
  1235.      P or !   to go ahead and replace the remaining occurrences without
  1236.               asking.
  1237.      Return   to stop the Query Replace.
  1238.  
  1239. The search for occurrences starts at point and goes to the end of  the
  1240. buffer,  so  to  replace in the entire buffer you must first go to the
  1241. beginning.
  1242.  
  1243. :entry "quit-process" "Command"
  1244. This is the same as typing "C-\" (the Quit character) to a normal UNIX
  1245. process,  except  it sends it to the current process in JOVE.  This is
  1246. only for versions of JOVE that have the interactive processes feature.
  1247. This  only  works  when  you  are inside a buffer that's attached to a
  1248. process.
  1249.  
  1250. :entry "quoted-insert" "Command"
  1251. This lets you insert characters that normally  would  be  executed  as
  1252. other JOVE commands.  For example, to insert "C-F" you type "C-Q C-F".
  1253.  
  1254. :entry "read-word-abbrev-file" "Command"
  1255. This reads a specified file that  contains  a  bunch  of  abbreviation
  1256. definitions, and makes those abbreviations available.  If the selected
  1257. buffer is not already in Word Abbrev mode this command puts it in that
  1258. mode.
  1259.  
  1260. :entry "recursive-edit" "Command"
  1261. This enters a recursive editing level.  This isn't really very useful.
  1262. I  don't  know why it's available for public use.  I think I'll delete
  1263. it some day.
  1264.  
  1265. :entry "redraw-display" "Command"
  1266. This centers the line containing point in the window.  If that line is
  1267. already  in  the  middle the window is first cleared and then redrawn.
  1268. If a numeric argument is supplied, the  line  is  positioned  at  that
  1269. offset from the top of the window.  For example, "ESC 0 C-L" positions
  1270. the line containing point at the top of the window.
  1271.  
  1272. :entry "rename-buffer" "Command"
  1273. This lets you rename the current buffer.
  1274.  
  1275. :entry "replace-in-region" "Command"
  1276. This is the same as "replace-string" except that it is  restricted  to
  1277. occurrences between Point and Mark.
  1278.  
  1279. :entry "replace-string" "Command"
  1280. This replaces all occurrences of a specified string with  a  specified
  1281. replacement  string.   This is just like "query-replace-string" except
  1282. it replaces without asking.
  1283.  
  1284. :entry "right-margin" "Variable"
  1285. Where the right margin is for  "Auto  Fill"  mode  and  the  "justify-
  1286. paragraph" and "justify-region" commands.  The default is 78.
  1287.  
  1288. :entry "right-margin-here" "Command"
  1289. This sets the "right-margin"  variable  to  the  current  position  of
  1290. point.   This  is  an  easy  way  to say, "Make the right margin begin
  1291. here," without having to count the number of spaces over  it  actually
  1292. is.
  1293.  
  1294. :entry "save-file" "Command"
  1295. This saves the current buffer to the associated file.  This makes your
  1296. changes  permanent  so  you should be sure you really want to.  If the
  1297. buffer has not been modified "save-file" refuses to do the  save.   If
  1298. you  really  do  want  to  write  the file you can use "C-X C-W" which
  1299. executes "write-file."
  1300.  
  1301. :entry "scroll-all-lines" "Variable"
  1302. When this is turned on, the entire window will  be  scrolled  left  or
  1303. right  when the current line scrolls.  The default value is OFF, which
  1304. will cause JOVE to behave in the familiar way, namely to  scroll  only
  1305. the current line.
  1306.  
  1307. :entry "scroll-down" "Command"
  1308. This scrolls the screen one line down.  If the line  containing  point
  1309. moves past the bottom of the window point is moved up to the center of
  1310. the window.  If a numeric argument is supplied  that  many  lines  are
  1311. scrolled;  if  the  argument  is  negative  the  screen is scrolled up
  1312. instead.
  1313.  
  1314. :entry "scroll-left" "Command"
  1315. This scrolls the text in the current window 10 character positions  to
  1316. the  left.   If  a  numeric  argument  is  specified  then the text is
  1317. scrolled  that  number  of  character  positions.   If  the   variable
  1318. "scroll-all-lines" is ON then "scroll-left" may actually do nothing if
  1319. the scrolling would cause Point not to be visible.
  1320.  
  1321. :entry "scroll-next-page" "Command"
  1322. This continuously scrolls up screen-full lines (PC version only).
  1323.  
  1324. :entry "scroll-previous-page" "Command"
  1325. This continuously scrolls down screen-full lines (PC version only).
  1326.  
  1327. :entry "scroll-right" "Command"
  1328. This scrolls the text in the current window 10 character positions  to
  1329. the  right.   If  a  numeric  argument  is  specified then the text is
  1330. scrolled  that  number  of  character  positions.   If  the   variable
  1331. "scroll-all-lines"  is  ON then "scroll-right" may actually do nothing
  1332. if the scrolling would cause Point not to be visible.
  1333.  
  1334. :entry "scroll-step" "Variable"
  1335. How many lines should be scrolled if  the  "previous-line"  or  "next-
  1336. line"  commands move you off the top or bottom of the screen.  You may
  1337. wish to decrease this variable if you are on  a  slow  terminal.   The
  1338. default  value  is  0,  which  means to center the current line in the
  1339. window.  If the value is negative, the behavior is slightly different.
  1340. If  you  move off the top of the window, and "scroll-step" is, say, -5
  1341. then the new line will be displayed 5 lines from  the  bottom  of  the
  1342. window.   If  you move off the bottom of the window, the new line will
  1343. be positioned 5 lines from the top of the window.
  1344.  
  1345. :entry "scroll-up" "Command"
  1346. This scrolls the screen one line up.  If  the  line  containing  point
  1347. moves  past the top of the window point is moved down to the center of
  1348. the window.  If a numeric argument is supplied  that  many  lines  are
  1349. scrolled;  if  the  argument  is  negative the screen is scrolled down
  1350. instead.
  1351.  
  1352. :entry "search-exit-char" "Variable"
  1353. Set this to the character you want to use to exit incremental  search.
  1354. The  default  is  Newline, which makes i-search compatible with normal
  1355. string search.
  1356.  
  1357. :entry "search-forward" "Command"
  1358. This searches forward for a  specified  search  string  and  positions
  1359. point  at  the  end of the string if it's found.  If the string is not
  1360. found point remains unchanged.  This searches from point to the end of
  1361. the buffer, so any matches before point will be missed.
  1362.  
  1363. :entry "search-forward-nd" "Command"
  1364. This is just like "search-forward" except that  it  doesn't  assume  a
  1365. default  search  string, and it doesn't set the default search string.
  1366. This is useful for defining  macros,  when  you  want  to  search  for
  1367. something,  but you don't want it to affect the current default search
  1368. string.
  1369.  
  1370. :entry "search-reverse" "Command"
  1371. This searches backward for a specified  search  string  and  positions
  1372. point  at the beginning if the string if it's found.  If the string is
  1373. not found point remains unchanged.  This searches from  point  to  the
  1374. beginning of the buffer, so any matches after point will be missed.
  1375.  
  1376. :entry "search-reverse-nd" "Command"
  1377. This is just like "search-reverse" except that  it  doesn't  assume  a
  1378. default  search  string, and it doesn't set the default search string.
  1379. This is useful for defining  macros,  when  you  want  to  search  for
  1380. something,  but you don't want it to affect the current default search
  1381. string.
  1382.  
  1383. :entry "select-buffer" "Command"
  1384. This selects a new or already existing buffer making  it  the  current
  1385. one.   You  can type either the buffer name or number.  If you type in
  1386. the name you need only type the name until it is unambiguous, at which
  1387. point typing Escape or Space will complete it for you.  If you want to
  1388. create a new buffer you can type Return instead of Space,  and  a  new
  1389. empty buffer will be created.
  1390.  
  1391. :entry "select-buffer-1" "Command"
  1392. This selects buffer number 1, if it exists (PC version only).
  1393.  
  1394. :entry "select-buffer-2" "Command"
  1395. This selects buffer number 2, if it exists (PC version only).
  1396.  
  1397. :entry "select-buffer-3" "Command"
  1398. This selects buffer number 3, if it exists (PC version only).
  1399.  
  1400. :entry "select-buffer-4" "Command"
  1401. This selects buffer number 4, if it exists (PC version only).
  1402.  
  1403. :entry "select-buffer-5" "Command"
  1404. This selects buffer number 5, if it exists (PC version only).
  1405.  
  1406. :entry "select-buffer-6" "Command"
  1407. This selects buffer number 6, if it exists (PC version only).
  1408.  
  1409. :entry "select-buffer-7" "Command"
  1410. This selects buffer number 7, if it exists (PC version only).
  1411.  
  1412. :entry "select-buffer-8" "Command"
  1413. This selects buffer number 8, if it exists (PC version only).
  1414.  
  1415. :entry "select-buffer-9" "Command"
  1416. This selects buffer number 9, if it exists (PC version only).
  1417.  
  1418. :entry "self-insert" "Command"
  1419. This inserts the character that invoked it into the buffer  at  point.
  1420. Initially  all  but  a  few  of  the  printing characters are bound to
  1421. "self-insert."
  1422.  
  1423. :entry "send-typeout-to-buffer" "Variable"
  1424. When this is set JOVE will send output that  normally  overwrites  the
  1425. screen  (temporarily) to a buffer instead.  This affects commands like
  1426. "list-buffers," "list-processes," and commands  that  use  completion.
  1427. The default value is "off".
  1428.  
  1429. :entry "set" "Command"
  1430. This gives a specified variable a new value.  Occasionally you'll  see
  1431. lines  like  "set  this variable to that value to do this".  Well, you
  1432. use the "set" command to do that.
  1433.  
  1434. :entry "set-mark" "Command"
  1435. This sets the mark at the current position in the buffer.   It  prints
  1436. the  message "Point pushed" on the message line.  It says that instead
  1437. of "Mark set" because when you set the mark the previous mark is still
  1438. remembered  on  a  ring of 16 marks.  So "Point pushed" means point is
  1439. pushed onto the ring of marks and becomes the value of "the mark".  To
  1440. go  through the ring of marks you type "C-U C-@", or execute the "pop-
  1441. mark" command.  If you type this enough times you  will  get  back  to
  1442. where you started.
  1443.  
  1444. :entry "shell" "Variable"
  1445. The shell to be used with all the shell  commands  command.   If  your
  1446. SHELL environment variable is set, it is used as the value of "shell;"
  1447. otherwise "/bin/csh" is the default.
  1448.  
  1449. :entry "shell" "Command"
  1450. This starts up an interactive shell in a window.  JOVE uses  "*shell*"
  1451. as  the  name of the buffer in which the interacting takes place.  See
  1452. the manual for information on how to use interactive processes.
  1453.  
  1454. :entry "shell-command" "Command"
  1455. This runs a UNIX command and places the output from that command in  a
  1456. buffer.   JOVE  creates  a buffer that matches the name of the command
  1457. you specify and then attaches that buffer to a window.  So,  when  you
  1458. have only one window running this command will cause JOVE to split the
  1459. window and attach the new buffer  to  that  window.   Otherwise,  JOVE
  1460. finds  the  most convenient of the available windows and uses that one
  1461. instead.  If the buffer already exists it  is  first  emptied,  except
  1462. that  if it's holding a file, not some output from a previous command,
  1463. JOVE prints an error message and refuses to execute the  command.   If
  1464. you  really  want to execute the command you should delete that buffer
  1465. (saving it first, if you like) or use  "shell-command-to-buffer,"  and
  1466. try again.
  1467.  
  1468. :entry "shell-command-no-buffer" "Command"
  1469. This is just like "shell-command" except  it  just  runs  the  command
  1470. without  saving  the output to any buffer.  It will report the success
  1471. of the command in the usual way.
  1472.  
  1473. :entry "shell-command-to-buffer" "Command"
  1474. This is just like "shell-command"  except  it  lets  you  specify  the
  1475. buffer to use instead of JOVE.
  1476.  
  1477. :entry "shell-command-with-typeout" "Command"
  1478. This is just like "shell-command" except that instead  of  saving  the
  1479. output to a buffer, and displaying it in a window, this just types out
  1480. the output in the same way that "list-buffers"  does.   Actually,  how
  1481. this  behaves  depends  on the value of the variable "send-typeout-to-
  1482. buffer." If it is on then shell-command-with-typeout will behave  just
  1483. like "shell-command."
  1484.  
  1485. :entry "shell-flags" "Variable"
  1486. This defines the flags that are passed to shell commands.  The default
  1487. is "-c".  See the "shell" variable to change the default shell.
  1488.  
  1489. :entry "show-match-mode" "Command"
  1490. This turns on Show Match mode (or off if it's  currently  on)  in  the
  1491. selected buffer.  This changes "}" and ")" so that when they are typed
  1492. the are inserted as usual, and then the cursor  flashes  back  to  the
  1493. matching  "{"  or  "("  (depending on what was typed) for about half a
  1494. second, and then goes back to just after the "}" or ")"  that  invoked
  1495. the  command.  This is useful for typing in complicated expressions in
  1496. a program.  You can change how long the cursor sits  on  the  matching
  1497. paren  by  setting  the  "paren-flash-delay"  variable  in tenths of a
  1498. second.  If the matching "{" or "(" isn't visible nothing happens.
  1499.  
  1500. :entry "shrink-window" "Command"
  1501. This makes the current window one line shorter, if possible.   Windows
  1502. must  be at least 2 lines high, one for the text and the other for the
  1503. mode line.
  1504.  
  1505. :entry "source" "Command"
  1506. This reads a bunch of JOVE commands from a file.  The  format  of  the
  1507. file  is the same as that in your initialization file (your ".joverc")
  1508. in your main directory.  There should be one command per line  and  it
  1509. should  be  as  though  you typed "ESC X" while in JOVE.  For example,
  1510. here's part of my initialization file:
  1511.  
  1512.      bind-to-key i-search-reverse ^R
  1513.      bind-to-key i-search-forward ^S
  1514.      bind-to-key pause-jove ^[S
  1515.  
  1516. What they do is make "C-R" call  the  "i-search-reverse"  command  and
  1517. "C-S" call "i-search-forward" and "ESC S" call "pause-jove."
  1518.  
  1519. :entry "spell-buffer" "Command"
  1520. This runs the current buffer through  the  UNIX  "spell"  program  and
  1521. places the output in buffer "Spell".  Then JOVE lets you edit the list
  1522. of words, expecting you to delete the ones that you don't care  about,
  1523. i.e.,  the  ones  you  know  are  spelled correctly.  Then the "parse-
  1524. spelling-errors-in-buffer" command  comes  along  and  finds  all  the
  1525. misspelled words and sets things up so the error commands work.
  1526.  
  1527. :entry "split-current-window" "Command"
  1528. This splits the current window into two  equal  parts  (providing  the
  1529. resulting  windows  would  be  big  enough)  and displays the selected
  1530. buffer in both windows.  Use "C-X 1" to go back to 1 window mode.   If
  1531. a numeric argument is supplied, the window is split "evenly" that many
  1532. times (when possible).
  1533.  
  1534. :entry "start-remembering" "Command"
  1535. This is just another name  for  the  "begin-kbd-macro"  name.   It  is
  1536. included for backward compatibility.
  1537.  
  1538. :entry "stop-remembering" "Command"
  1539. This is just another name for  the  "end-kbd-macro"  command.   It  is
  1540. included for backward compatibility.
  1541.  
  1542. :entry "stop-process" "Command"
  1543. This sends a stop  signal  (C-Z,  for  most  people)  to  the  current
  1544. process.   It  only works if you have the interactive process feature,
  1545. and you are in a buffer attached to a process.
  1546.  
  1547. :entry "string-length" "Command"
  1548. This prints the number of characters in the string that point sits in.
  1549. Strings  are  surrounded  by double quotes.  JOVE knows that "\007" is
  1550. considered a single character, namely  "C-G",  and  also  knows  about
  1551. other  common  ones,  like "\r" (Return) and "\n" (LineFeed).  This is
  1552. mostly useful only for C programmers.
  1553.  
  1554. :entry "suspend-jove" "Command"
  1555. This is a synonym for "pause-jove."
  1556.  
  1557. :entry "sync-frequency" "Variable"
  1558. The temporary files used by JOVE are forced out to disk  every  "sync-
  1559. frequency"  modifications.  The default is 50, which really makes good
  1560. sense.  Unless your system is very unstable,  you  probably  shouldn't
  1561. fool with this.
  1562.  
  1563. :entry "tag-file" "Variable"
  1564. This  the  name  of  the  file  in  which  JOVE  should  look  up  tag
  1565. definitions.  The default value is "./tags".
  1566.  
  1567. :entry "text-mode" "Command"
  1568. This sets the major mode to  Text.   Currently  the  other  modes  are
  1569. Fundamental, C and Lisp mode.
  1570.  
  1571. :entry "tmp-file-pathname" "Variable"
  1572. This tells JOVE where to put the tmp files, which is where JOVE stores
  1573. buffers  internally.   The default is usually in /tmp, but if you want
  1574. to store them somewhere else, you can  set  this  variable.   If  your
  1575. system  crashes  a lot it might be a good idea to set this variable to
  1576. somewhere other than /tmp because the system removes all the files  in
  1577. /tmp  upon  reboot,  and  so  you  would not be able to recover editor
  1578. buffers using the "jove -r" command.
  1579.  
  1580. NOTE: In order for this to work correctly you must set  this  variable
  1581. BEFORE  JOVE  creates  the tmp file.  You can set this in your .joverc
  1582. (the closer to tbe beginning the better), or as soon as you  start  up
  1583. JOVE before you visit any files.
  1584.  
  1585. :entry "transpose-characters" "Command"
  1586. This switches the character before point with the one after point, and
  1587. then  moves  forward  one.   This doesn't work at the beginning of the
  1588. line, and at the end of the line it switches the two characters before
  1589. point.   Since  point is moved forward, so that the character that was
  1590. before point is still before point,  you  can  use  "C-T"  to  drag  a
  1591. character  down  the  length  of  a line.  This command pretty quickly
  1592. becomes very useful.
  1593.  
  1594. :entry "transpose-lines" "Command"
  1595. This switches the current line with the one above it, and  then  moves
  1596. down  one  so that the line that was above point is still above point.
  1597. This, like "transpose-characters," can be used to drag a line  down  a
  1598. page.
  1599.  
  1600. :entry "unbind-key" "Command"
  1601. Use this to unbind "any" key sequence.  You can  use  this  to  unbind
  1602. even  a  prefix  command,  since  this  command  does not use "key-map
  1603. completion".  For example,  "ESC  X  unbind-key  ESC  ["  unbinds  the
  1604. sequence  "ESC  [".  This is useful for "turning off" something set in
  1605. the system-wide ".joverc" file.
  1606.  
  1607. :entry "update-time-frequency" "Variable"
  1608. How often the mode line  is  updated  (and  thus  the  time  and  load
  1609. average, if you display them).  The default is 30 seconds.
  1610.  
  1611. :entry "use-i/d-char" "Variable"
  1612. If your terminal has insert/delete character capability you  can  tell
  1613. JOVE not to use it by setting this to "off".  In my opinion it is only
  1614. worth using insert/delete character at low baud  rates.   WARNING:  if
  1615. you  set  this  to  "on" when your terminal doesn't have insert/delete
  1616. character capability, you will get weird (perhaps fatal) results.
  1617.  
  1618. :entry "version" "Command"
  1619. Displays the version number of this JOVE.
  1620.  
  1621. :entry "visible-bell" "Variable"
  1622. Use the terminal's visible bell  instead  of  beeping.   This  is  set
  1623. automatically if your terminal has the capability.
  1624.  
  1625. :entry "visible-spaces-in-window" "Command"
  1626. This displays an underscore character instead of  each  space  in  the
  1627. window  and displays a greater-than followed by spaces for each tab in
  1628. the window.  The actual text in the buffer is not  changed;  only  the
  1629. screen  display  is  affected.   To  turn this off you run the command
  1630. again; it toggles.
  1631.  
  1632. :entry "visit-file" "Command"
  1633. This reads a specified file into the current buffer replacing the  old
  1634. text.   If the buffer needs saving JOVE will offer to save it for you.
  1635. Sometimes you use this to start over, say if you make lots of  changes
  1636. and  then change your mind.  If that's the case you don't want JOVE to
  1637. save your buffer and you answer "NO" to the question.
  1638.  
  1639. :entry "window-find" "Command"
  1640. This lets you select another buffer in another window three  different
  1641. ways.   This  waits  for  another  character  which  can be one of the
  1642. following:
  1643.  
  1644.      T    Finds a tag in the other window.
  1645.      F    Finds a file in the other window.
  1646.      B    Selects a buffer in the other window.
  1647.  
  1648. This is just a convenient short hand for "C-X 2" (or "C-X O" if  there
  1649. are  already  two  windows)  followed  by the appropriate sequence for
  1650. invoking each command.  With  this,  though,  there  isn't  the  extra
  1651. overhead  of  having  to  redisplay.   In  addition, you don't have to
  1652. decide whether to type "C-X 2" or "C-X O" since "C-X 4" does the right
  1653. thing.
  1654.  
  1655. :entry "word-abbrev-mode" "Command"
  1656. This turns on Word Abbrev mode (or off if it's currently  on)  in  the
  1657. selected  buffer.   Word  Abbrev  mode  lets  you  specify  a word (an
  1658. abbreviation) and a phrase  with  which  JOVE  should  substitute  the
  1659. abbreviation.   You  can  use this to define words to expand into long
  1660. phrases, e.g., "jove" can  expand  into  "Jonathan's  Own  Version  of
  1661. Emacs";  another  common use is defining words that you often misspell
  1662. in the same way, e.g., "thier" => "their" or "teh" => "the".  See  the
  1663. information on the "auto-case-abbrev" variable.
  1664.  
  1665. There are two kinds of abbreviations: mode specific  and  global.   If
  1666. you define a Mode specific abbreviation in C mode, it will expand only
  1667. in buffers that are in C mode.  This is  so  you  can  have  the  same
  1668. abbreviation  expand  to  different  things depending on your context.
  1669. Global abbreviations expand  regardless  of  the  major  mode  of  the
  1670. buffer.   The  way  it  works  is  this:  JOVE looks first in the mode
  1671. specific table, and then in the global table.  Whichever it  finds  it
  1672. in  first is the one that's used in the expansion.  If it doesn't find
  1673. the word it is left untouched. JOVE tries to expand words as they  are
  1674. typed,  when  you type a punctuation character or Space or Return.  If
  1675. you are in Auto Fill mode the expansion will be filled as if you typed
  1676. it yourself.
  1677.  
  1678. :entry "wrap-search" "Variable"
  1679. If set, searches will "wrap around" the ends of the buffer instead  of
  1680. stopping at the bottom or top.  The default is "off".
  1681.  
  1682. :entry "write-file" "Command"
  1683. This saves the current buffer to a specified file, and then makes that
  1684. file  the  default  file  name for this buffer.  If you specify a file
  1685. that already exists you are asked to confirm over-writing it.
  1686.  
  1687. :entry "write-files-on-make" "Variable"
  1688. When set, all modified files will be written out before  calling  make
  1689. when the "compile-it" command is executed.  The default is "on".
  1690.  
  1691. :entry "write-macros-to-file" "Command"
  1692. This writes the currently defined macros to  a  specified  file  in  a
  1693. format appropriate for reading them back in with the "source" command.
  1694. The purpose of this command is to allow you to define macros once  and
  1695. use them in other instances of JOVE.
  1696.  
  1697. :entry "write-modified-files" "Command"
  1698. This saves all the buffers that need saving.  If you supply a  numeric
  1699. argument it asks for each buffer whether you really want to save it.
  1700.  
  1701. :entry "write-region" "Command"
  1702. This writes the text in the region to a specified file.  If  the  file
  1703. already exists you are asked to confirm over-writing it.
  1704.  
  1705. :entry "write-word-abbrev-file" "Command"
  1706. This writes the currently defined abbreviations to a  specified  file.
  1707. They  can  be  read back in and automatically defined with "read-word-
  1708. abbrev-file."
  1709.  
  1710. :entry "yank" "Command"
  1711. This undoes the last kill command.  That is,  it  inserts  the  killed
  1712. text  at point.  When you do multiple kill commands in a row, they are
  1713. merged so that yanking them back with "C-Y" yanks back all of them.
  1714.  
  1715. :entry "yank-pop" "Command"
  1716. This yanks back previous killed text.  JOVE has a kill ring  on  which
  1717. the  last 10 kills are stored.  "yank" yanks a copy of the text at the
  1718. front of the ring.  If you want one of the last ten kills you use "ESC
  1719. Y"  which  rotates  the  ring so another different entry is now at the
  1720. front.  You can use "ESC Y" only  immediately  following  a  "C-Y"  or
  1721. another  "ESC  Y".  If you supply a negative numeric argument the ring
  1722. is rotated the other way.  If you use this command enough times  in  a
  1723. row  you  will  eventually  get back to where you started.  Experiment
  1724. with this.  It's extremely useful.
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740.  
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752.  
  1753.  
  1754.  
  1755.  
  1756.  
  1757.  
  1758.  
  1759.  
  1760.  
  1761.  
  1762.  
  1763.  
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775.  
  1776.  
  1777.  
  1778.  
  1779.  
  1780.  
  1781.  
  1782.  
  1783.